Age | Commit message (Expand) | Author | Lines |
2025-05-16 | fix strcasestr failing to find zero-length needleHEADmaster | Rich Felker | -0/+1 |
2025-05-05 | align mbsnrtowcs behavior on partial character with new requirements | Rich Felker | -2/+4 |
2025-05-05 | dns resolver: reorder sockaddr union to make initialization safe | Rich Felker | -1/+1 |
2025-02-22 | termios: fix input speed handling | Rich Felker | -4/+19 |
2025-02-21 | clone: clear the frame pointer in the child process on relevant ports | Alex Rønne Petersen | -8/+17 |
2025-02-21 | clone: align the given stack pointer on or1k and riscv | Alex Rønne Petersen | -0/+4 |
2025-02-21 | signal: check sigpause() input parameter | Lihua Zhao | -1/+1 |
2025-02-21 | loongarch64: add bits/hwcap.h for cpu feature bits in AT_HWCAP auxv entry | Xing Li | -0/+14 |
2025-02-21 | bind_textdomain_codeset: fix return value | Rich Felker | -2/+4 |
2025-02-21 | shadow.h: remove declaration of function not implemented | Rich Felker | -1/+0 |
2025-02-21 | riscv: mark __restore and __restore_rt hidden | Alex Rønne Petersen | -0/+4 |
2025-02-21 | i386, x86_64, x32: set the symbol type for the crt1 START function | Alex Rønne Petersen | -0/+3 |
2025-02-12 | iconv: harden UTF-8 output code path against input decoder bugs | Rich Felker | -0/+4 |
2025-02-09 | hasmntopt: match only whole options not arbitrary substrings | Rich Felker | -1/+9 |
2025-02-09 | iconv: fix erroneous input validation in EUC-KR decoder | Rich Felker | -1/+1 |
2025-02-09 | iconv: fix erroneous decoding of some invalid ShiftJIS sequences | Rich Felker | -0/+2 |
2025-02-09 | s390x: manually inline __tls_get_addr in __tls_get_offset | Alex Rønne Petersen | -10/+10 |
2025-02-09 | ldso: don't reclaim zero-memory-sized segments | Yao Zi | -0/+1 |
2025-01-13 | sched.h: reduce namespace conflicts in _GNU_SOURCE profile | Rich Felker | -9/+8 |
2024-12-23 | mq: add x32-specific implementations to work around mismatched kernel ABI | Rich Felker | -0/+36 |
2024-12-13 | SIGEV_THREAD timers: re-block signals when reusing kernel thread | Rich Felker | -0/+2 |
2024-12-13 | SIGEV_THREAD timers: fix fatal signal if internal SIGTIMER becomes unblocked | Rich Felker | -1/+8 |
2024-10-22 | loongarch64: add TLSDESC support | Xing Li | -0/+39 |
2024-10-22 | wire up vdso clock_gettime for riscv32 and riscv64 | Rich Felker | -4/+2 |
2024-10-22 | wire up vdso clock_gettime for powerpc, powerpc64, and s390x | Rich Felker | -0/+14 |
2024-10-22 | mips: use preferred asm mnemomic jr for better assembler compatibility | Alex Rønne Petersen | -6/+6 |
2024-10-22 | mntent: exclude trailing newline from parsed field | Alyssa Ross | -1/+1 |
2024-10-22 | arm: fix _init/_fini alignment in crti.o | Alex Rønne Petersen | -0/+2 |
2024-10-12 | sys/stat.h: fix typo in statx member name stx_dio_offset_align | Khem Raj | -1/+1 |
2024-10-11 | s390x: don't allow br r0 in CRTJMP asm | Stefan Liebler | -1/+1 |
2024-10-10 | update contributor name in authorship notices | Rich Felker | -3/+3 |
2024-10-10 | fix compile regression in exit on archs without SYS_pause | Rich Felker | -1/+1 |
2024-10-10 | abstract missing SYS_pause syscall with macros | Rich Felker | -5/+12 |
2024-09-13 | statx: add new struct statx fields and corresponding mask macros | Rich Felker | -1/+8 |
2024-09-13 | statx: fix uninitialized attributes/mask in fallback path | Rich Felker | -1/+1 |
2024-09-13 | statx: fix ENOSYS emulation not setting stx_rdev_* | Gabriel Ravier | -0/+2 |
2024-08-31 | sysconf: fix _SC_MINSIGSTKSZ computation to match kernel interpretation | Rich Felker | -2/+7 |
2024-08-31 | sigaltstack: enforce dynamic MINSIGSTKSZ limit | Rich Felker | -1/+3 |
2024-08-26 | printf: drastically reduce stack usage without [long] double args | Rich Felker | -4/+8 |
2024-08-20 | isatty: don't collapse all non-EBADF errors to ENOTTY | Rich Felker | -4/+2 |
2024-08-18 | printf core: replace if(0) blocks around switch cases with explicit gotos | Rich Felker | -3/+3 |
2024-08-18 | iconv: add cp858 | Rich Felker | -0/+11 |
2024-08-16 | catan: remove no-op reduction mod pi and unused code | Rich Felker | -74/+3 |
2024-08-14 | remove incorrect comment regarding powl exceptional cases | Rich Felker | -8/+0 |
2024-08-10 | strerror: add error strings for EUCLEAN and ENAVAIL | Rich Felker | -0/+2 |
2024-08-10 | use hidden visibility for C entry point function _start_c | Rich Felker | -1/+1 |
2024-08-10 | fix lost or delayed wakes in sem_post under certain race conditions | Rich Felker | -1/+1 |
2024-08-09 | m68k: fix POLLWRNORM and POLLWRBAND | Baruch Siach | -0/+2 |
2024-08-09 | fix missing make dependency for Scrt1.o due to typo | Rich Felker | -1/+1 |
2024-07-24 | timer_create: replace pthread barrier with semaphores for thread start | Rich Felker | -4/+14 |